summaryrefslogtreecommitdiff
path: root/app/[lng]/evcp/(evcp)/avl/page.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'app/[lng]/evcp/(evcp)/avl/page.tsx')
-rw-r--r--app/[lng]/evcp/(evcp)/avl/page.tsx6
1 files changed, 4 insertions, 2 deletions
diff --git a/app/[lng]/evcp/(evcp)/avl/page.tsx b/app/[lng]/evcp/(evcp)/avl/page.tsx
index 1c345cda..b1dbfeb0 100644
--- a/app/[lng]/evcp/(evcp)/avl/page.tsx
+++ b/app/[lng]/evcp/(evcp)/avl/page.tsx
@@ -3,7 +3,6 @@ import { type SearchParams } from "@/types/table"
import { getValidFilters } from "@/lib/data-table"
import { vendorPoSearchParamsCache } from "@/lib/po/vendor-table/validations"
import { getAvlLists } from "@/lib/avl/service"
-import { AvlListItem } from "@/lib/avl/types"
import { AvlPageClient } from "./avl-page-client"
interface AvlPageProps {
@@ -45,5 +44,8 @@ export default async function AvlPage(props: AvlPageProps) {
const searchParams = await props.searchParams
const initialData = await getInitialAvlData(searchParams)
- return <AvlPageClient initialData={initialData} />
+ return (<>
+ <AvlPageClient initialData={initialData} />
+ </>
+ )
}